home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 26
/
Cream of the Crop 26.iso
/
os2
/
plnk081.zip
/
pilot-link.0.8.1
/
Perl5
/
Makefile.PL.in
next >
Wrap
Makefile
|
1997-07-14
|
506b
|
21 lines
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
$prefix = "@prefix@";
$exec_prefix = "@exec_prefix@";
$libdir = "@libdir@";
unless ((-e "$libdir/libpisock.la") or (-e "$libdir/libpisock.a")) {
die "pilot-link must be installed before PDA::Pilot can be built\n";
}
$lib = "-L$libdir -lpisock";
WriteMakefile(
'NAME' => 'PDA::Pilot',
'VERSION' => '0.1',
'LIBS' => $lib,
'INC' => '-I../include',
);